home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / AppleScript for Acrobat plug-in / SOURCES / STAMPAH.H < prev    next >
C/C++ Source or Header  |  2000-06-23  |  888b  |  33 lines

  1. /******************************************************************************
  2.  
  3. StampAH.h
  4.  
  5. This file is furnished to you by Adobe Systems Incorporated 
  6. under the terms of the Acrobat(r) Plug-ins Software 
  7. Development Kit License Agreement.
  8.  
  9. Copyright (C) 1994-1997, Adobe Systems Inc.  All Rights Reserved.
  10.  
  11.  
  12. Interface to Stamper annotation-related routines.
  13.  
  14. ******************************************************************************/
  15.  
  16. #ifndef _H_StampAH
  17. #define _H_StampAH
  18.  
  19. #include "AVExpT.h"
  20.  
  21. /* SetUpStamperAnnotHandler
  22. ** Creates and registers the Stamper annotation handler.
  23. */
  24. void SetUpStamperAnnotHandler(void);
  25.  
  26. /* CreateAppleScriptAnnotationAt
  27. ** Creates an AppleScript annotation in the given page view at the given
  28. ** coordinates.
  29. */
  30. ASBool CreateAppleScriptAnnotationAt(AVPageView pageView, Int16 x, Int16 y);
  31.  
  32. #endif /* !_H_StampAH */
  33.